home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 7 / BBS in a Box - Macintosh - Volume VII (BBS in a Box) (January 1993).iso / Files / Prog / T / TC Prog Guide.cpt / picture ƒ / simpict.h < prev    next >
Text File  |  1991-02-18  |  552b  |  30 lines

  1. /*
  2. *    FILE:        simpict.h
  3. *    AUTHOR:        R. Gonzalez
  4. *    CREATED:    October 6, 1990
  5. *
  6. *    Defines simple pict application class.
  7. */
  8.  
  9. # ifndef    simpict_h
  10. # define    simpict_h
  11.  
  12. # include    "pict.h"
  13. # include    "coord.h"
  14.  
  15. /******************************************************************
  16. *   simple pict application
  17. ******************************************************************/
  18. struct    Simple_Pict:Generic_Pict
  19. {
  20.     Projector        *projector1,
  21.                     *projector2;
  22.     Coord2            *c1,
  23.                     *c2;
  24.         
  25.     boolean            init(void);
  26.     virtual void    run(void);
  27.     boolean            destroy(void);
  28. };
  29.  
  30. # endif